body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f6f8fa;
    background-image: url("../../Images/General/purple\ gradient\ background.jpeg");
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    display: flex;
    width: 1000px;
    height: 650px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.left-panel {
    flex: 1;
    background-color: #0d1117;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
}
.wallpaper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.wallpaper img {
    width: 100%;
    height: 100%;
    object-fit:cover;
    object-position: center;
}

.right-panel {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 24px;
    font-weight: 100;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
    
}

input[type="text"], input[type="password"], input[type="email"], input[type="tel"], select {
    width: 100%;
    padding: 6px;
    border: 1px solid #d0d7de;
    border-radius: 4px;
    box-sizing: content-box;
    height: 16px;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #81589a;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.btn:hover {
    background-color: #aaa;
}
.error-message {
    color: #d73a49;
    margin-top: 10px;
}

.form-group label {
display: inline;
margin-left: 5px;
font-size: 12px;
color: #333;
}
.form-group input[type="checkbox"] {
vertical-align: middle;
}
.form-group a {
color: #81589a;
text-decoration: underline;
}
.form-group a:hover {
text-decoration: underline;
}
